adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / ReadOnlyDictionary<TKey,TValue> Class
Members


In This Topic
    ReadOnlyDictionary<TKey,TValue> Class
    In This Topic
    Read-only dictionary.
    Syntax
    'Declaration
     
    
    <DefaultMemberAttribute("Item")>
    <DebuggerTypeProxyAttribute(System.Collections.Generic.Mscorlib_CollectionDebugView`1)>
    <DebuggerDisplayAttribute("Count = {Count}")>
    Public NotInheritable Class ReadOnlyDictionary
        (Of TKey,TValue) 
       Inherits System.Collections.ObjectModel.ReadOnlyCollection(Of KeyValuePair(Of TKey,TValue))
       Implements IReadOnlyDictionary(Of TKey,TValue) 
    [DefaultMember("Item")]
    [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)]
    [DebuggerDisplay("Count = {Count}")]
    public sealed class ReadOnlyDictionary<TKey,TValue> : System.Collections.ObjectModel.ReadOnlyCollection<KeyValuePair<TKey,TValue>>, IReadOnlyDictionary<TKey,TValue>  
    [DefaultMember("Item")]
    [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)]
    [DebuggerDisplay("Count = {Count}")]
    generic<typename TKey>
    generic<typename TValue>
    public ref class ReadOnlyDictionary sealed : public System.Collections.ObjectModel.ReadOnlyCollection<KeyValuePair<TKey,TValue>>, IReadOnlyDictionary<TKey,TValue>  
    Type Parameters
    TKey
    TValue
    Inheritance Hierarchy

    System.Object
       System.Collections.ObjectModel.ReadOnlyCollection<T>
          ArcanaDevelopment.adTempus.Shared.ReadOnlyDictionary<TKey,TValue>

    See Also